//---------------------------------------------------------------------------------------------
// Murphy Scripting
// - Leave EventName as $SE DV Set URL$ for main script method
//---------------------------------------------------------------------------------------------
void $SE DV Set URL$ () 
{
 string filepath;
 string filename = "DigitalVideowithAudio.mp4";
	filepath = "/fs/etfs/config/config0/CustomerExtensions/"+ filename;					// this is the path where customer exytensions will allways be located
	cultureSetString(StringIDs.DigitalVideoURL, filepath, true);   						//include the fulle name of the file in the URL
  
}

//---------------------------------------------------------------------------------------------
// Murphy Scripting
// - Leave EventName as $SE DV Load New URL$ for main script method
//---------------------------------------------------------------------------------------------
void $SE DV Load New URL$ () 
{
  SendAction(ApplicationIDs.DigitalVideoApp, ActionIDs.DigitalVideoApp_UpdateUrl, 0);  	//This loads the URL out of the string into the app and casues it to be played.
  																						//This can be done from a user event as well
}

//---------------------------------------------------------------------------------------------
// Murphy Scripting
// - Leave EventName as $SE DV Clear URL$ for main script method
//---------------------------------------------------------------------------------------------
void $SE DV Clear URL$ () 
{
  string filepath = "";
 	cultureSetString(StringIDs.DigitalVideoURL, filepath, true);
	     
}

